home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / MAIL.XPI / bin / chrome / messenger.jar / content / messenger-smime / msgHdrViewSMIMEOverlay.js < prev    next >
Encoding:
JavaScript  |  2004-04-17  |  7.1 KB  |  236 lines

  1. /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  2.  * ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is mozilla.org Code.
  16.  *
  17.  * The Initial Developer of the Original Code is
  18.  * Netscape Communications Corporation.
  19.  * Portions created by the Initial Developer are Copyright (C) 1998-2001
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *   Scott MacGreogr <mscott@netscape.com>
  24.  *
  25.  * Alternatively, the contents of this file may be used under the terms of
  26.  * either of the GNU General Public License Version 2 or later (the "GPL"),
  27.  * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28.  * in which case the provisions of the GPL or the LGPL are applicable instead
  29.  * of those above. If you wish to allow use of your version of this file only
  30.  * under the terms of either the GPL or the LGPL, and not to allow others to
  31.  * use your version of this file under the terms of the MPL, indicate your
  32.  * decision by deleting the provisions above and replace them with the notice
  33.  * and other provisions required by the GPL or the LGPL. If you do not delete
  34.  * the provisions above, a recipient may use your version of this file under
  35.  * the terms of any one of the MPL, the GPL or the LGPL.
  36.  *
  37.  * ***** END LICENSE BLOCK ***** */
  38.  
  39. var gSignedUINode = null;
  40. var gEncryptedUINode = null;
  41. var gSMIMEContainer = null;
  42. var gStatusBar = null;
  43. var gSignedStatusPanel = null;
  44. var gEncryptedStatusPanel = null;
  45.  
  46. var gEncryptedURIService = null;
  47. var gMyLastEncryptedURI = null;
  48.  
  49. // manipulates some globals from msgReadSMIMEOverlay.js
  50.  
  51. const nsICMSMessageErrors = Components.interfaces.nsICMSMessageErrors;
  52.  
  53. var smimeHeaderSink = 
  54.   maxWantedNesting: function()
  55.   {
  56.     return 1;
  57.   },
  58.  
  59.   signedStatus: function(aNestingLevel, aSignatureStatus, aSignerCert)
  60.   {
  61.     if (aNestingLevel > 1) {
  62.       // we are not interested
  63.       return;
  64.     }
  65.  
  66.     gSignatureStatus = aSignatureStatus;
  67.     gSignerCert = aSignerCert;
  68.  
  69.     gSMIMEContainer.collapsed = false;
  70.     gSignedUINode.collapsed = false;
  71.     gSignedStatusPanel.collapsed = false;
  72.   
  73.     switch (aSignatureStatus) {
  74.       case nsICMSMessageErrors.SUCCESS:
  75.         gSignedUINode.setAttribute("signed", "ok");
  76.         gStatusBar.setAttribute("signed", "ok");
  77.         break;
  78.  
  79.       case nsICMSMessageErrors.VERIFY_NOT_YET_ATTEMPTED:
  80.         gSignedUINode.setAttribute("signed", "unknown");
  81.         gStatusBar.setAttribute("signed", "unknown");
  82.         break;
  83.  
  84.       case nsICMSMessageErrors.VERIFY_CERT_WITHOUT_ADDRESS:
  85.       case nsICMSMessageErrors.VERIFY_HEADER_MISMATCH:
  86.         gSignedUINode.setAttribute("signed", "mismatch");
  87.         gStatusBar.setAttribute("signed", "mismatch");
  88.         break;
  89.  
  90.       default:
  91.         gSignedUINode.setAttribute("signed", "notok");
  92.         gStatusBar.setAttribute("signed", "notok");
  93.         break;
  94.     }
  95.   },
  96.  
  97.   encryptionStatus: function(aNestingLevel, aEncryptionStatus, aRecipientCert)
  98.   {
  99.     if (aNestingLevel > 1) {
  100.       // we are not interested
  101.       return;
  102.     }
  103.  
  104.     gEncryptionStatus = aEncryptionStatus;
  105.     gEncryptionCert = aRecipientCert;
  106.  
  107.     gSMIMEContainer.collapsed = false; 
  108.     gEncryptedUINode.collapsed = false;
  109.     gEncryptedStatusPanel.collapsed = false; 
  110.  
  111.     if (nsICMSMessageErrors.SUCCESS == aEncryptionStatus)
  112.     {
  113.       gEncryptedUINode.setAttribute("encrypted", "ok");
  114.       gStatusBar.setAttribute("encrypted", "ok");
  115.     }
  116.     else
  117.     {
  118.       gEncryptedUINode.setAttribute("encrypted", "notok");
  119.       gStatusBar.setAttribute("encrypted", "notok");
  120.     }
  121.     
  122.     if (gEncryptedURIService)
  123.     {
  124.       gMyLastEncryptedURI = GetLoadedMessage();
  125.       gEncryptedURIService.rememberEncrypted(gMyLastEncryptedURI);
  126.     }
  127.   },
  128.  
  129.   QueryInterface : function(iid)
  130.   {
  131.     if (iid.equals(Components.interfaces.nsIMsgSMIMEHeaderSink) || iid.equals(Components.interfaces.nsISupports))
  132.       return this;
  133.     throw Components.results.NS_NOINTERFACE;
  134.   }
  135. };
  136.  
  137. function forgetEncryptedURI()
  138. {
  139.   if (gMyLastEncryptedURI && gEncryptedURIService)
  140.   {
  141.     gEncryptedURIService.forgetEncrypted(gMyLastEncryptedURI);
  142.     gMyLastEncryptedURI = null;
  143.   }
  144. }
  145.  
  146. function onSMIMEStartHeaders()
  147. {
  148.   gEncryptionStatus = -1;
  149.   gSignatureStatus = -1;
  150.   
  151.   gSignerCert = null;
  152.   gEncryptionCert = null;
  153.   
  154.   gSMIMEContainer.collapsed = true;
  155.  
  156.   gSignedUINode.collapsed = true;
  157.   gSignedUINode.removeAttribute("signed");
  158.   gSignedStatusPanel.collapsed = true;
  159.   gStatusBar.removeAttribute("signed");
  160.  
  161.   gEncryptedUINode.collapsed = true;
  162.   gEncryptedUINode.removeAttribute("encrypted");
  163.   gEncryptedStatusPanel.collapsed = true; 
  164.   gStatusBar.removeAttribute("encrypted");
  165.  
  166.   forgetEncryptedURI();
  167. }
  168.  
  169. function onSMIMEEndHeaders()
  170. {}
  171.  
  172. function msgHdrViewSMIMEOnLoad(event)
  173. {
  174.   // we want to register our security header sink as an opaque nsISupports
  175.   // on the msgHdrSink used by mail.....
  176.   msgWindow.msgHeaderSink.securityInfo = smimeHeaderSink;
  177.  
  178.   gSignedUINode = document.getElementById('signedHdrIcon');
  179.   gEncryptedUINode = document.getElementById('encryptedHdrIcon');
  180.   gSMIMEContainer = document.getElementById('smimeBox');
  181.   gStatusBar = document.getElementById('status-bar');
  182.   gSignedStatusPanel = document.getElementById('signed-status');
  183.   gEncryptedStatusPanel = document.getElementById('encrypted-status');
  184.  
  185.   // add ourself to the list of message display listeners so we get notified when we are about to display a
  186.   // message.
  187.   var listener = {};
  188.   listener.onStartHeaders = onSMIMEStartHeaders;
  189.   listener.onEndHeaders = onSMIMEEndHeaders;
  190.   gMessageListeners.push(listener);
  191.  
  192.   gEncryptedURIService = 
  193.     Components.classes["@mozilla.org/messenger-smime/smime-encrypted-uris-service;1"]
  194.     .getService(Components.interfaces.nsIEncryptedSMIMEURIsService);
  195. }
  196.  
  197. function msgHdrViewSMIMEOnUnload(event)
  198. {
  199.   forgetEncryptedURI();
  200. }
  201.  
  202. function msgHdrViewSMIMEOnMessagePaneHide()
  203. {
  204.   gSMIMEContainer.collapsed = true;
  205.   gSignedUINode.collapsed = true;
  206.   gSignedStatusPanel.collapsed = true;
  207.   gEncryptedUINode.collapsed = true;
  208.   gEncryptedStatusPanel.collapsed = true; 
  209. }
  210.  
  211. function msgHdrViewSMIMEOnMessagePaneUnhide()
  212. {
  213.   if (gEncryptionStatus != -1 || gSignatureStatus != -1)
  214.   {
  215.     gSMIMEContainer.collapsed = false;
  216.  
  217.     if (gSignatureStatus != -1)
  218.     {
  219.       gSignedUINode.collapsed = false;
  220.       gSignedStatusPanel.collapsed = false;
  221.     }
  222.  
  223.     if (gEncryptionStatus != -1)
  224.     {
  225.       gEncryptedUINode.collapsed = false;
  226.       gEncryptedStatusPanel.collapsed = false;
  227.     }
  228.   }
  229. }
  230.  
  231. addEventListener('messagepane-loaded', msgHdrViewSMIMEOnLoad, true);
  232. addEventListener('messagepane-unloaded', msgHdrViewSMIMEOnUnload, true);
  233. addEventListener('messagepane-hide', msgHdrViewSMIMEOnMessagePaneHide, true);
  234. addEventListener('messagepane-unhide', msgHdrViewSMIMEOnMessagePaneUnhide, true);
  235.